home *** CD-ROM | disk | FTP | other *** search
- #include <iostream.h>
- #include <conio.h>
- #pragma hdrstop
-
- int main(int argv, char** argc)
- {
- cout << endl << "Starting program..." << endl << endl;
- int i = 6;
- while (i-- > 0) {
- cout << endl << "Today I have " << i;
- cout << " problems to worry about.";
- }
- cout << "\b!\nYipee!";
- cout << endl << endl << "Press any key to continue...";
- getch();
- return 0;
- }
-
-